home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / gfx / show / flick_1_0.lha / Source / smakefile < prev   
Makefile  |  1993-12-19  |  699b  |  21 lines

  1. SCFLAGS = optimize opttime nodebug parm=reg nostackcheck math=ieee \
  2.           stringmerge smallcode smalldata gst=t:includes.gst
  3.  
  4. #SCFLAGS = nooptimize debug=full parm=reg math=ieee \
  5. #          stringmerge smallcode smalldata
  6.  
  7. flick: flick.c t:includes.gst median.o c2p320x200.o c2p640x480.o
  8.     sc link $(SCFLAGS) flick.c median.o c2p320x200.o c2p640x480.o
  9.  
  10. median.o: median.c t:includes.gst
  11.     sc $(SCFLAGS) median.c
  12.  
  13. c2p320x200.o: adaptive.s smakefile
  14.     macro68 -D "width=320,height=200" adaptive.s -o c2p320x200.o
  15.  
  16. c2p640x480.o: adaptive.s smakefile
  17.     macro68 -D "width=640,height=480" adaptive.s -o c2p640x480.o
  18.  
  19. t:includes.gst: includes.h smakefile
  20.     sc $(SCFLAGS) makegst=t:includes.gst includes.h
  21.